body {
    text-align: justify;
    font-family: Georgia, serif;
    line-height: 1.6;
    margin: 2rem;
}

.metadata {
    margin-bottom: 20px;
}

.partie {
    margin-bottom: 30px;
}

.commented {
    background-color: #fff3cd;
}

.variant {
    background-color: #eef7ff;
}

.placeName {
    font-style: italic;
}

.persName {
    font-variant: small-caps;
}

.note,
.variant-note {
    display: inline;
}

.note-ref,
.variant-ref {
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    color: #09e2d6;
    margin-left: 0.2em;
}

.note-content,
.variant-content {
    display: none;
    margin-top: 6px;
    padding: 8px 10px;
    background: #f8f8f8;
    border-left: 3px solid #00c7c7;
    border-radius: 6px;
    color: #333;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Infobulles */
.infobulle {
    position: relative;
    background-color: yellow;
}

.infobulle .source {
    border-bottom: 1px dotted hsl(180, 100%, 9%);
    cursor: help;
}

.infobulle .cible {
    display: none;
    position: absolute;
    top: 1.8em;
    left: 0;
    z-index: 900;
    padding: 10px;
    max-width: 220px;
    line-height: 1.4em;
    font-size: 0.85em;
    color: white;
    background-color: black;
    border-radius: 5px;
}

.infobulle .source:hover + .cible,
.infobulle .source:focus + .cible {
    display: inline-block;
}